b2f5b18ddfd7336e8462fdd2fd710561b37c849b,src/test/java/io/confluent/kafkarest/integration/SimpleConsumerJsonTest.java,SimpleConsumerJsonTest,setUp,#,85
Before Change
final int numPartitions = 1;
final int replicationFactor = 1;
TestUtils.createTopic(zkUtils, topicName, numPartitions, replicationFactor,
JavaConversions.asScalaIterable(this.servers).toSeq(), new Properties());
}
@Test
After Change
final int numPartitions = 1;
final int replicationFactor = 1;
TestUtils.createTopic(zkUtils, topicName, numPartitions, replicationFactor,
JavaConversions.asScalaBuffer(this.servers), new Properties());
}
@Test